Global Seismicity

Hundreds of earthquakes occur across the globe every day, but most of them are too small for people to feel. Here, we will dive into the data and explore some of the larger earthquakes (greater than M5.0) that have occurred over the past several years.

Bokeh Plot
Bokeh Plot

45 Years of Seismicity

Finally, we have gathered all the seismicity data for all earthquakes larger than M5.0 from the past nearly 45 years (1976–2020). This would be far too many points to interactively load into your web browser (more than 26,000 earthquakes), so here we are using a tool that automatically bins data and shows data density based on color; dark colors have no data and bright colors denote lots of data.

# Load the holoviews datashader tool to quickly calculate earthquake density
from holoviews.operation.datashader import rasterize

plot = rasterize(earthquakes).opts(plot=dict(fig_size=200, aspect=2)).opts(title="Earthquake Density > M5.0 (1976-2020)").opts(opts.Image(tools=['hover']))
Bokeh Plot